Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@aria-ui/core
Advanced tools
A compact and efficient toolkit for building reactive web components. It powers the [Aria UI](https://github.com/ocavue/aria-ui) library, but it can also be used independently.
A compact and efficient toolkit for building reactive web components. It powers the Aria UI library, but it can also be used independently.
Uses signals to manage state reactively and automatically update the DOM in response to state changes. It's powered by the mature and battle-tested @preact/signals-core
library.
Shares signals easily across widely nested HTML elements through context.
A comprehensive collection of utilities for DOM interactions, enabling declarative management of attributes, styles, and event listeners.
function ElementMixin<Props>(
useElement: (
host: ConnectableElement,
props?: Partial<Props>,
) => SignalState<Props>,
defaultProps: Props,
): () => BaseElement & Props;
A mixin for creating custom elements.
A context is a way to provide and consume signals in a HTML tree.
consume(element: ConnectableElement): Signal<T>
Receives the signal from a parent element.
provide(element: ConnectableElement, signal: Signal<T>): void
Provides a signal to all children of the element.
function createContext<T>(key: string | symbol, defaultValue: T): Context<T>;
Creates a new context.
function useAnimationFrame(element: ConnectableElement, effect: () => void | () => void | VoidFunction): () => void
Executes an effect in the next animation frame.
The given effect
function will be called when the element is connected, and when the dependencies change afterward.
effect
could return a function callback
. callback
will be called in the next animation frame.
callback
could return a function dispose
. dispose
will be called when the effect is disposed.
function useAriaAttribute<K>(
element: ConnectableElement,
key: K,
compute: () => AriaAttributes[K],
): VoidFunction;
Sets the computed attribute of the element when it's connected.
This is a TypeScript type-safe version of useAttribute.
function useAriaRole(element: ConnectableElement, role: AriaRole | () => AriaRole | undefined): VoidFunction
Sets the role
attribute of the element when it's connected.
You can pass a string or a compute function that returns a string.
function useAttribute(
element: ConnectableElement,
key: string,
compute: () => undefined | string | number,
): VoidFunction;
Sets the computed attribute of the element when it's connected.
function useEventListener<K>(
element: ConnectableElement,
type: K,
listener: (event: HTMLElementEventMap[K]) => void,
options?: boolean | AddEventListenerOptions,
): VoidFunction;
Registers an event listener on the element.
function useQuerySelector<E>(
element: ConnectableElement,
selector: string,
options: MutationObserverInit,
): ReadonlySignal<E | null>;
Returns the first element matching the given selector.
function useQuerySelectorAll<E>(
element: ConnectableElement,
selector: string,
options: MutationObserverInit,
): ReadonlySignal<NodeListOf<E>>;
Returns all elements matching the given selector.
function useStyle<K>(
element: ConnectableElement,
key: K,
compute: () => CSSStyleDeclaration[K],
): VoidFunction;
Sets the computed style of the element when it's connected.
Base class for all custom elements in Aria UI. It implements the ConnectableElement interface.
new BaseElement(): BaseElement
Any HTML element that has implemented the addConnectedCallback
method.
Property | Type | Description |
---|---|---|
addConnectedCallback | (callback : () => void | VoidFunction ) => void | Registers a callback to be called when the element is connected to the DOM. This callback can return a cleanup function that will be called when the element is disconnected from the DOM. |
type SignalState<T>: { [K in keyof T]: Signal<T[K]> };
A plain object containing signals.
function assignProps<T>(
defaultProps: Readonly<T>,
props?: Partial<T>,
): Readonly<T>;
Merges two objects, with the second object taking precedence. Only keys present in the first object will be included in the result.
function mapSignals<T>(values: T): SignalState<T>;
Maps every value in the given object to a signal.
function mapValues<T>(signals: SignalState<T>): T;
Maps every signal in the given object to its current value.
type ReadonlySignal<T>: _ReadonlySignal<T>;
A read-only signal, providing a way to observe state changes without the ability to modify the state.
This is a re-export of ReadonlySignal
type from @preact/signals-core
.
type Signal<T>: _Signal<T>;
A mutable signal that can be used to manage reactive state changes.
This is a re-export of Signal
type from @preact/signals-core
.
type SignalValue<S>: S extends Signal<infer T> ? T : never;
Extracts the value type from a signal type.
function batch<T>(fn: () => T): T;
Groups multiple signal updates into a single batch, optimizing performance by reducing the number of updates.
This is a re-export of batch
from @preact/signals-core
.
function createComputed<T>(fn: () => T): ReadonlySignal<T>;
Creates a computed signal that automatically updates its value based on the reactive dependencies it uses. Computed signals are read-only and are used to derive state from other signals, recalculating their value when dependencies change.
This is an alias for computed
from @preact/signals-core
.
function createSignal<T>(value: T): Signal<T>;
Creates and returns a new signal with the given initial value. Signals are reactive data sources that can be read and written to, allowing components to reactively update when their values change.
This is an alias for signal
from @preact/signals-core
.
function untracked<T>(fn: () => T): T;
Executes a given computation without automatically tracking its dependencies, useful for avoiding unnecessary re-computations.
This is a re-export of untracked
from @preact/signals-core
.
function useEffect(
element: ConnectableElement,
callback: () => void | VoidFunction,
): () => void;
Registers a callback to be called when the given element is connected to the DOM. It will track which signals are accessed and re-run their callback when those signals change. The callback can return a cleanup function that will be called when the effect is destroyed.
The effect will be destroyed and all signals it was subscribed to will be unsubscribed from, when the element is disconnected from the DOM. You can also manually destroy the effect by calling the returned function.
FAQs
A compact and efficient toolkit for building reactive web components. It powers the [Aria UI](https://github.com/ocavue/aria-ui) library, but it can also be used independently.
The npm package @aria-ui/core receives a total of 3,352 weekly downloads. As such, @aria-ui/core popularity was classified as popular.
We found that @aria-ui/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.